import argparse
parser = argparse.ArgumentParser(
description='Object Detection using YOLO in OPENCV')!
parser.add_argument('--image', help='Path to image file.')
parser.add_argument('--video', help='Path to video file.')
args = parser.parse_args()
)